home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
programm.ing
/
gfa
/
procdure.lzh
/
VERBNOUN.LST
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
File List
|
1992-01-20
|
331 b
|
15 lines
PROCEDURE verb_noun(entry$,VAR verb$,noun$)
verb$=""
noun$=""
IF LEN(entry$)
entry$=UPPER$(TRIM$(entry$))
IF INSTR(entry$," ")
verb$=LEFT$(entry$,INSTR(entry$," ")-1)
noun$=RIGHT$(entry$,LEN(entry$)-RINSTR(entry$," "))
ELSE
verb$=entry$
noun$=entry$
ENDIF
ENDIF
RETURN